home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
lang_c
/
c_windw
/
quickc.bat
< prev
next >
Wrap
DOS Batch File
|
1987-12-28
|
640b
|
16 lines
REM Ready to install to Quick C on default hard disc drive?
PAUSE Press any key to continue, or Ctrl+C to Halt
IF NOT EXIST \qc\include\stdio.h GOTO ERROR
COPY a:c_wndw.h \qc\include\c_wndw.h /v
COPY a:c_wndw.qui \qc\lib\c_wndw.lib /v
copy a:mtest.qui \qc\mtest.h
copy a:complink.qui \qc\complink.bat
REM Ready to install the sample programs?
PAUSE Press any key to continue, or Ctrl+C to Halt
MD \qc\marietta
copy a:*.c \qc\marietta\*.c
GOTO END
:ERROR
REM Could not find library <stdio.h> on default disc
:END